home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Catalog 1996 Spring / 1996 Electronics Boutique Spring CD-ROM (USA).bin / eb / demos / spycraft.dir / 00005.ls < prev    next >
Encoding:
Text File  |  1995-12-11  |  400 b   |  25 lines

  1. global gMovieSprite
  2.  
  3. on enterFrame
  4.   if rollOver(3) then
  5.     go("more button1")
  6.     exit
  7.   else
  8.     if rollOver(4) then
  9.       go("more button2")
  10.       exit
  11.     else
  12.       if rollOver(5) then
  13.         go("more button3")
  14.         exit
  15.       else
  16.         if rollOver(gMovieSprite + 1) then
  17.           go("more return")
  18.           exit
  19.         end if
  20.       end if
  21.     end if
  22.   end if
  23.   go("more screen")
  24. end
  25.